home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 52
/
Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso
/
Aminet
/
util
/
moni
/
Scout-src.lha
/
netinclude
/
pwd.h
< prev
next >
Wrap
C/C++ Source or Header
|
2002-09-16
|
928b
|
36 lines
#ifndef PWD_H
#define PWD_H \
"$Id: pwd.h,v 1.1.1.1 2001/11/26 22:21:13 tboeckel Exp $"
/*
* Definitions of uid_t and passwd structure for 32 bit C compilers
*
* Copyright © 1994 AmiTCP/IP Group,
* Network Solutions Development, Inc.
* All rights reserved.
*/
#ifndef SYS_TYPES_H
#include <sys/types.h>
#endif
/* The passwd structure */
struct passwd
{
char *pw_name; /* Username */
char *pw_passwd; /* Encrypted password */
uid_t pw_uid; /* User ID */
gid_t pw_gid; /* Group ID */
char *pw_gecos; /* Real name etc */
char *pw_dir; /* Home directory */
char *pw_shell; /* Shell */
};
struct passwd *getpwuid(uid_t uid);
struct passwd *getpwnam(const char *name);
void setpwent(void);
struct passwd *getpwent(void);
void endpwent(void);
#endif /* PWD_H */